home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / APXMDIDV.PAK / APMDMDI1.CPP next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  46 lines

  1. //----------------------------------------------------------------------------
  2. //  Project ApxMdiDv
  3. //  Borland International
  4. //  Copyright ⌐ 1996. All Rights Reserved.
  5. //
  6. //  SUBSYSTEM:    ApxMdiDv Application
  7. //  FILE:         apmdmdi1.cpp
  8. //  AUTHOR:       
  9. //
  10. //  OVERVIEW
  11. //  ~~~~~~~~
  12. //  Source file for implementation of TApxMdiDvMDIChild (TMDIChild).
  13. //
  14. //----------------------------------------------------------------------------
  15.  
  16. #include <owl/pch.h>
  17.  
  18. #include "apxmddva.h"
  19. #include "apmdmdi1.h"
  20.  
  21.  
  22. //{{TApxMdiDvMDIChild Implementation}}
  23.  
  24.  
  25. //--------------------------------------------------------
  26. // TApxMdiDvMDIChild
  27. // ~~~~~~~~~~
  28. // Construction/Destruction handling.
  29. //
  30. TApxMdiDvMDIChild::TApxMdiDvMDIChild(TMDIClient& parent, const char far* title, TWindow* clientWnd, bool shrinkToClient, TModule* module)
  31. :
  32.   TMDIChild(parent, title, clientWnd, shrinkToClient, module)
  33. {
  34.   // INSERT>> Your constructor code here.
  35.  
  36. }
  37.  
  38.  
  39. TApxMdiDvMDIChild::~TApxMdiDvMDIChild()
  40. {
  41.   Destroy();
  42.  
  43.   // INSERT>> Your destructor code here.
  44.  
  45. }
  46.